Interface ProfileMappingResource


@Path("profile-mappings") public interface ProfileMappingResource
Author:
Endi S. Dewata
  • Method Details

    • findProfileMappings

      @GET javax.ws.rs.core.Response findProfileMappings(@QueryParam("filter") String filter, @QueryParam("start") Integer start, @QueryParam("size") Integer size)
    • getProfileMapping

      @GET @Path("{profileMappingID}") javax.ws.rs.core.Response getProfileMapping(@PathParam("profileMappingID") String profileMappingID)
    • addProfileMapping

      @POST javax.ws.rs.core.Response addProfileMapping(ProfileMappingData profileMappingData)
    • updateProfileMapping

      @Path("{profileMappingID}") javax.ws.rs.core.Response updateProfileMapping(@PathParam("profileMappingID") String profileMappingID, ProfileMappingData profileMappingData)
    • changeStatus

      @POST @Path("{profileMappingID}") javax.ws.rs.core.Response changeStatus(@PathParam("profileMappingID") String profileMappingID, @QueryParam("action") String action)
    • removeProfileMapping

      @DELETE @Path("{profileMappingID}") javax.ws.rs.core.Response removeProfileMapping(@PathParam("profileMappingID") String profileMappingID)